博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序排行榜
阅读量:5792 次
发布时间:2019-06-18

本文共 2339 字,大约阅读时间需要 7 分钟。

{
{item.ranking}}
{
{item.studentName}}
{ {item.attendTime}}
复制代码
.item-box {  width: 700rpx;  margin: 0 auto;  padding: 20rpx 0;}.items {  width: 100%;}.item {  position: relative;  border-top: 2rpx solid #eee;  height: 115rpx;  line-height: 115rpx;  overflow: hidden;}.inner.txt {  background-color: #fff;  width: 100%;  z-index: 5;  padding: 0 10rpx;  transition: left 0.2s ease-in-out;  white-space: nowrap;  overflow: hidden;  text-overflow: ellipsis;}.item-icon {  width: 64rpx;  height: 64rpx;  vertical-align: middle;  margin-right: 16rpx;  margin-left: 13px;  border-radius: 50%;}.item-data {  float: right;  margin-right: 5%;}.rankpace {  color: #fa7e04;}.inner.del {  background-color: #e64340;  width: 180rpx;  text-align: center;  z-index: 4;  right: 0;  color: #fff;}view {  box-sizing: border-box;}.item:last-child {  border-bottom: 2rpx solid #eee;}.inner {  position: absolute;  top: 0;}复制代码
{  "navigationBarTitleText": "排行榜"}复制代码
Page({  data: {    delBtnWidth: 180,    // 数据    list: [],    icon: "../../images/logIcon.png"  },  onLoad: function(options) {    console.log("排行榜", options.id);    var that = this;    wx.request({      url: '########attendStatus=1&scope=1&selectTime=' + options.id +'&studentNo=' + wx.getStorageSync("studentNo"),      method: 'GET',      header: {        Authorization: 'Bearer' + wx.getStorageSync("token"),      },      success: function(res) {        console.log("排行榜", res.data.data);        if (res.data.data != null) {          that.setData({            list: res.data.data,          })        } else {          wx.showModal({            title: '提示',            content: '当天没有数据',            showCancel: false,            success: function(res) {              if (res.confirm) {                console.log('用户点击确定');                wx.navigateBack({                  delta: 1 //小程序关闭当前页面返回上一页面                })              }            }          })        }      }    })  },  onReady: function() {    // 页面渲染完成  },  onShow: function() {  },  onHide: function() {    // 页面隐藏  },  onUnload: function() {    // 页面关闭  },})复制代码

往后余生,唯独有你 简书作者:达叔小生 90后帅气小伙,良好的开发习惯;独立思考的能力;主动并且善于沟通 简书博客:

结语

下面我将继续对 其他知识 深入讲解 ,有兴趣可以继续关注 小礼物走一走 or 点赞

转载地址:http://dzhyx.baihongyu.com/

你可能感兴趣的文章
Atitit.软件开发提升稳定性总结
查看>>
lftp查看文件时间与登录服务查看文件时间相差8小时
查看>>
[leetcode]Next Permutation @ Python
查看>>
JAVA(2)——JDBC
查看>>
php heredoc 与 nowdoc
查看>>
DBA_Oracle DBA常用表汇总(概念)
查看>>
第30周二
查看>>
数学类杂志SCI2013-2014影响因子
查看>>
实用的树形菜单控件tree
查看>>
最近公共祖先(lca)
查看>>
【WP 8.1开发】文件选取器的使用方法
查看>>
Java实现BASE64编解码
查看>>
【Java】java基本知识
查看>>
之前学习wordpress的几张图片
查看>>
RT-Thread下的串口驱动程序分析【转载】
查看>>
UITableView的UITableViewStyleGrouped
查看>>
ecshop中getAll ,getOne ,getRow的区别
查看>>
Apple 企业开发者账号申请记录
查看>>
ecshop后台权限增加
查看>>
C#装饰者模式实例代码
查看>>